home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / kcl / akcl / kcl.lha / uts / makefiles / make_lsp < prev    next >
Text File  |  1987-05-08  |  431b  |  30 lines

  1. .SUFFIXES: .o .c .lsp
  2.  
  3.  
  4. PORTDIR    = ../unixport
  5.  
  6.  
  7. OBJS    = arraylib.o assert.o defmacro.o defstruct.o describe.o evalmacros.o \
  8.     iolib.o listlib.o mislib.o module.o numlib.o packlib.o predlib.o \
  9.     seq.o seqlib.o setf.o top.o trace.o 
  10.  
  11.  
  12. CFLAGS    = -c -O
  13.  
  14.  
  15. all:    $(OBJS)
  16.  
  17.  
  18. #.lsp.c:
  19. #    #$(PORTDIR)/saved_kcl $(PORTDIR)/ $* $* S0111
  20.  
  21. .c.o:
  22.     cc $(CFLAGS) $*.c
  23.     cat $*.data >> $*.o
  24.  
  25.  
  26. clean:
  27.     rm -f *.o core a.out
  28. allclean:
  29.     rm -f *.h *.data *.c
  30.